mirror of
https://github.com/whyour/qinglong.git
synced 2026-09-21 01:32:44 +08:00
9 lines
258 B
TypeScript
9 lines
258 B
TypeScript
export interface LocalArtifactFileRetirementResult {
|
|
disposition: 'deleted' | 'already_absent';
|
|
bytesReclaimed: number;
|
|
}
|
|
|
|
export interface LocalArtifactFileRetirementStore {
|
|
retire(logArtifactId: string): Promise<LocalArtifactFileRetirementResult>;
|
|
}
|