mirror of
https://github.com/ezolenko/rollup-plugin-typescript2.git
synced 2025-12-08 19:06:16 +00:00
- extra definitions
This commit is contained in:
parent
fe70d274db
commit
121def84cf
9
dist/icache.d.ts
vendored
Normal file
9
dist/icache.d.ts
vendored
Normal 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
14
dist/ioptions.d.ts
vendored
Normal 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
4
dist/irollup-options.d.ts
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
export interface IRollupOptions {
|
||||
dest?: string;
|
||||
file?: string;
|
||||
}
|
||||
3
dist/partial.d.ts
vendored
Normal file
3
dist/partial.d.ts
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
export declare type Partial<T> = {
|
||||
[P in keyof T]?: T[P];
|
||||
};
|
||||
Loading…
x
Reference in New Issue
Block a user