Skip to content

Commit

Permalink
- extra definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
ezolenko committed Aug 26, 2017
1 parent fe70d27 commit 121def8
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 0 deletions.
9 changes: 9 additions & 0 deletions dist/icache.d.ts
@@ -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 changes: 14 additions & 0 deletions dist/ioptions.d.ts
@@ -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 changes: 4 additions & 0 deletions dist/irollup-options.d.ts
@@ -0,0 +1,4 @@
export interface IRollupOptions {
dest?: string;
file?: string;
}
3 changes: 3 additions & 0 deletions dist/partial.d.ts
@@ -0,0 +1,3 @@
export declare type Partial<T> = {
[P in keyof T]?: T[P];
};

0 comments on commit 121def8

Please sign in to comment.