@chamn/engine
Version:
19 lines (18 loc) • 675 B
TypeScript
import { JSExpressionPropType } from '@chamn/model';
export type CSSPropertiesVariableBindEditorProps = {
initialValue?: {
property: string;
value: string | JSExpressionPropType;
}[];
onValueChange?: (val: {
property: string;
value: string;
}[]) => void;
};
export type CSSPropertiesVariableBindEditorRef = {
setValue: (val: {
property: string;
value: string | JSExpressionPropType;
}[]) => void;
};
export declare const CSSPropertiesVariableBindEditor: import('react').ForwardRefExoticComponent<CSSPropertiesVariableBindEditorProps & import('react').RefAttributes<CSSPropertiesVariableBindEditorRef>>;