@chamn/engine
Version:
21 lines (20 loc) • 587 B
TypeScript
export declare const defaultPropertyOptions: {
value: string;
}[];
export type CSSPropertiesEditorProps = {
initialValue?: {
property: string;
value: string;
}[];
onValueChange?: (val: {
property: string;
value: string;
}[]) => void;
};
export type CSSPropertiesEditorRef = {
setValue: (val: {
property: string;
value: string;
}[]) => void;
};
export declare const CSSPropertiesEditor: import('react').ForwardRefExoticComponent<CSSPropertiesEditorProps & import('react').RefAttributes<CSSPropertiesEditorRef>>;