- extra definitions

This commit is contained in:
ezolenko 2017-08-25 22:19:35 -06:00
parent fe70d274db
commit 121def84cf
4 changed files with 30 additions and 0 deletions

9
dist/icache.d.ts vendored Normal file
View File

@ -0,0 +1,9 @@
export interface ICache<DataType> {
exists(name: string): boolean;
path(name: string): string;
match(names: string[]): boolean;
read(name: string): DataType;
write(name: string, data: DataType): void;
touch(name: string): void;
roll(): void;
}

14
dist/ioptions.d.ts vendored Normal file
View File

@ -0,0 +1,14 @@
import { tsModule } from "./tsproxy";
export interface IOptions {
include: string;
exclude: string;
check: boolean;
verbosity: number;
clean: boolean;
cacheRoot: string;
abortOnError: boolean;
rollupCommonJSResolveHack: boolean;
tsconfig: string;
useTsconfigDeclarationDir: boolean;
typescript: typeof tsModule;
}

4
dist/irollup-options.d.ts vendored Normal file
View File

@ -0,0 +1,4 @@
export interface IRollupOptions {
dest?: string;
file?: string;
}

3
dist/partial.d.ts vendored Normal file
View File

@ -0,0 +1,3 @@
export declare type Partial<T> = {
[P in keyof T]?: T[P];
};