@storybook/addon-ondevice-controls
Version:
Display storybook controls on your device.
16 lines (15 loc) • 433 B
TypeScript
export interface ArrayProps {
arg: {
name: string;
value: string[];
separator: string;
};
onChange: (value: string[]) => void;
isPristine: boolean;
}
declare const ArrayType: {
({ arg: { name, value, separator }, onChange, isPristine, }: ArrayProps): import("react/jsx-runtime").JSX.Element;
serialize(value: any): any;
deserialize(value: any): any[];
};
export default ArrayType;