import { CompressionMethod } from './constants.js'; import { TypedResponse } from '@actions/http-client/lib/interfaces'; import { HttpClientError } from '@actions/http-client'; export interface ITypedResponseWithError extends TypedResponse { error?: HttpClientError; } export interface ArtifactCacheEntry { cacheKey?: string; scope?: string; cacheVersion?: string; creationTime?: string; archiveLocation?: string; } export interface ArtifactCacheList { totalCount: number; artifactCaches?: ArtifactCacheEntry[]; } export interface CommitCacheRequest { size: number; } export interface ReserveCacheRequest { key: string; version?: string; cacheSize?: number; } export interface ReserveCacheResponse { cacheId: number; } export interface InternalCacheOptions { compressionMethod?: CompressionMethod; enableCrossOsArchive?: boolean; cacheSize?: number; } export interface ArchiveTool { path: string; type: string; }