UNPKG

298 BTypeScriptView Raw
1import { Config } from './config';
2import { Schema } from './type';
3export { default as SchemaId } from './schemaId';
4export * from './type';
5export interface Options {
6 contents: Schema[];
7 config?: Partial<Config>;
8}
9export default function dtsGenerator(options: Options): Promise<string>;