UNPKG

@aurigma/design-atoms-model

Version:

Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.

10 lines (9 loc) 380 B
import { IPropertyFactory } from "../Factory/AbstractFactory"; export interface IInputPropertyMetadata { displayName?: string; factory?: IPropertyFactory; type?: TPropertyDataTypes; enumObject?: object; ignore?: boolean; } export declare type TPropertyDataTypes = "number" | "string" | "boolean" | "enum" | "collection" | "color" | "item" | "object";