rollup-plugin-typescript2
Version:
Seamless integration between Rollup and TypeScript. Now with errors.
10 lines • 327 B
TypeScript
export interface ICache<DataType> {
exists(name: string): boolean;
path(name: string): string;
match(names: string[]): boolean;
read(name: string): DataType | null | undefined;
write(name: string, data: DataType): void;
touch(name: string): void;
roll(): void;
}
//# sourceMappingURL=icache.d.ts.map