1 | import { Diagnostic } from './interfaces';
|
2 | export 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 | */
|
12 | declare const _default: (options?: Options) => Promise<Diagnostic[]>;
|
13 | export default _default;
|