mirror of
https://github.com/actions/setup-python.git
synced 2024-11-06 16:05:56 -05:00
10 lines
No EOL
447 B
TypeScript
10 lines
No EOL
447 B
TypeScript
import { InternalHasteMap, Persistence, FileData } from '../types';
|
|
declare class SQLitePersistence implements Persistence {
|
|
read(cachePath: string): InternalHasteMap;
|
|
write(cachePath: string, internalHasteMap: InternalHasteMap, removedFiles: FileData, changedFiles?: FileData): void;
|
|
private getDatabase;
|
|
getType(): string;
|
|
}
|
|
declare const _default: SQLitePersistence;
|
|
export default _default;
|
|
//# sourceMappingURL=sqlite.d.ts.map
|