UNPKG

383 BTypeScriptView Raw
1import { Diagnostic } from './interfaces';
2export interface Options {
3 cwd: string;
4 typingsFile?: string;
5 testFiles?: readonly string[];
6}
7/**
8 * Type check the type definition of the project.
9 *
10 * @returns A promise which resolves the diagnostics of the type definition.
11 */
12declare const _default: (options?: Options) => Promise<Diagnostic[]>;
13export default _default;