5 lines
248 B
TypeScript
5 lines
248 B
TypeScript
export declare const buildDeprecatedPropsWarning: (message: string | string[]) => (deprecatedProps: {
|
|
[key: string]: any;
|
|
}) => void;
|
|
export declare const buildWarning: (message: string | string[], gravity?: 'warning' | 'error') => () => void;
|