Files
toolkit/packages/artifact/src/internal/upload/upload-response.ts
T

12 lines
206 B
TypeScript
Raw Normal View History

export interface UploadResponse {
/**
* The name of the artifact that was uploaded
*/
artifactName: string
/**
* Total size of the artifact that was uploaded in bytes
*/
size: number
}