mirror of
https://github.com/actions/toolkit.git
synced 2026-08-17 00:00:22 +02:00
26 lines
442 B
TypeScript
26 lines
442 B
TypeScript
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
|
||
|
|
}
|