UNPKG

205 BTypeScriptView Raw
1import { Schema } from './type';
2export interface TypeTree {
3 children: Map<string, TypeTree>;
4 schema?: Schema;
5}
6export declare function buildTypeTree(schemas: IterableIterator<Schema>): TypeTree;