( content: any, options?: C )
| 91 | options?: C |
| 92 | ): ValidateError[]; |
| 93 | export function validate<C extends Config = Config>( |
| 94 | content: any, |
| 95 | options?: C |
| 96 | ): any { |
| 97 | const config = mergeConfig(options); |
| 98 | return validateTree(content, config); |
| 99 | } |
| 100 | |
| 101 | export function createElement( |
| 102 | name: string | { key?: string | number }, |
no test coverage detected
searching dependent graphs…