mirror of https://github.com/actions/setup-go.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
357 B
TypeScript
9 lines
357 B
TypeScript
import { InternalHasteMap, Persistence } from '../types';
|
|
declare class FilePersistence implements Persistence {
|
|
write(cachePath: string, internalHasteMap: InternalHasteMap): void;
|
|
read(cachePath: string): InternalHasteMap;
|
|
getType(): string;
|
|
}
|
|
declare const _default: FilePersistence;
|
|
export default _default;
|
|
//# sourceMappingURL=file.d.ts.map
|