mirror of
https://github.com/actions/toolkit.git
synced 2026-08-16 00:00:21 +02:00
Initial commit to create @actions/cache package
This commit is contained in:
+25
@@ -0,0 +1,25 @@
|
||||
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
|
||||
}
|
||||
|
||||
export interface CacheOptions {
|
||||
compressionMethod?: CompressionMethod
|
||||
}
|
||||
Reference in New Issue
Block a user