import type { MetaEntitySign } from './entity-sign.extension.js'; import type { UmbApi } from '../../../../libs/extension-api/index.js'; import type { Observable } from '../../../../libs/observable-api/index.js'; export interface UmbEntitySignApi extends UmbApi { /** * Get the label for this sign * @returns {string} The label */ getLabel?: () => string; /** * An observable that provides the label for this sign * @returns { Observable} A label observable */ label?: Observable; } export interface UmbEntitySignApiArgs { meta: MetaType; }