1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-03 05:07:46 +02:00
cache/src/contracts.d.ts

26 lines
472 B
TypeScript
Raw Normal View History

import { CompressionMethod } from "./constants";
2019-10-30 14:48:49 -04:00
export interface ArtifactCacheEntry {
cacheKey?: string;
scope?: string;
creationTime?: string;
archiveLocation?: string;
}
export interface CommitCacheRequest {
size: number;
}
export interface ReserveCacheRequest {
key: string;
version?: string;
}
export interface ReserveCacheResponse {
cacheId: number;
}
export interface CacheOptions {
compressionMethod?: CompressionMethod;
}