UNPKG

@omnia/fx-models

Version:
17 lines (16 loc) 799 B
import { Guid } from "@omnia/fx-models/internal-do-not-import-from-here/shared/models"; import { LockStatusExcludeChildren, PropertyLockStatusType } from "../../../ux"; import { PropertyDefinition, PropertyDisplaySettingsBase } from "../PropertyDefinition"; import { LinkPropertyValue } from "../values"; export declare class LinkDisplaySettings extends PropertyDisplaySettingsBase { locks?: PropertyLockStatusType<LockStatusExcludeChildren<Omit<LinkDisplaySettings, "locks">, "label">>; sip?: boolean; } export type LinkEditorSettings = { required?: boolean; }; export declare const LinkPropertyDefinitionId: Guid; export declare class LinkPropertyDefinition extends PropertyDefinition<LinkPropertyValue, LinkDisplaySettings, LinkEditorSettings> { id: Guid; typeName: string; }