wix-style-react
Version:
wix-style-react
21 lines • 539 B
TypeScript
export function once(type: any): {
validation: string;
type: any;
};
export function optional(type: any): {
validation: string;
type: any;
};
export function multiple(type: any): {
validation: string;
type: any;
};
export function any(): {
validation: string;
};
export function oneOf(...types: any[]): {
validation: string;
type: any[];
};
export function children(...rules: any[]): (props: any, propName: any, componentName: any) => Error | undefined;
//# sourceMappingURL=CompositeValidation.d.ts.map