mirror of
https://github.com/ezolenko/rollup-plugin-typescript2.git
synced 2025-12-08 19:06:16 +00:00
11 lines
412 B
TypeScript
11 lines
412 B
TypeScript
import { ICache } from "./icache";
|
|
export declare class NoCache<DataType> implements 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=nocache.d.ts.map
|