@10up/block-components
Version:
10up Components built for the WordPress Block Editor.
24 lines • 898 B
TypeScript
export function AbstractRepeater({ children, addButton, allowReordering, onChange, value, defaultValue, }: {
children: Function;
addButton: string;
allowReordering: boolean;
onChange: Function;
value: any[];
defaultValue: any[];
}): any;
export function AttributeRepeater({ children, attribute, addButton, allowReordering, }: {
children: any;
attribute?: null | undefined;
addButton?: null | undefined;
allowReordering?: boolean | undefined;
}): import("react").JSX.Element;
export function Repeater({ children, addButton, allowReordering, onChange, value, defaultValue, attribute, }: {
children: any;
addButton?: null | undefined;
allowReordering?: boolean | undefined;
onChange: any;
value: any;
defaultValue?: any[] | undefined;
attribute?: null | undefined;
}): import("react").JSX.Element;
//# sourceMappingURL=index.d.ts.map