Files
toolkit/packages/cache/src/internal/contracts.d.ts
T

26 lines
450 B
TypeScript
Raw Normal View History

import {CompressionMethod} from './constants'
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
}
2020-05-12 14:47:31 -04:00
export interface InternalCacheOptions {
compressionMethod?: CompressionMethod
}