rsuite
Version:
A suite of react components
14 lines (9 loc) • 351 B
TypeScript
import { Type } from './Type';
import { CheckType } from './index.d';
export declare class ObjectType extends Type {
constructor(errorMessage?: string);
shape: (types: { [key: string]: CheckType }) => this;
}
declare function getObjectType(errorMessage?: string): ObjectType;
type exportType = typeof getObjectType;
export default exportType;