UNPKG

@storybook/addon-ondevice-controls

Version:

Display storybook controls on your device.

15 lines (14 loc) 402 B
export interface ObjectProps { arg: { name: string; value: Record<string, any> | Array<any>; }; onChange: (value: any) => void; isPristine: boolean; } declare const ObjectType: { ({ arg, onChange, isPristine }: ObjectProps): import("react/jsx-runtime").JSX.Element; serialize(object: any): string; deserialize(value: any): any; }; export default ObjectType;