12345678910111213 |
- import type { ValidationOptions } from './types';
- declare let hasDeprecationWarnings: boolean;
- declare const validate: (config: Record<string, unknown>, options: ValidationOptions) => {
- hasDeprecationWarnings: boolean;
- isValid: boolean;
- };
- export default validate;
|