mirror of
https://github.com/whyour/qinglong.git
synced 2026-09-20 16:07:11 +08:00
13 lines
316 B
TypeScript
13 lines
316 B
TypeScript
export interface LocalArtifactCapacitySnapshot {
|
|
availableBytes: bigint;
|
|
totalBytes: bigint;
|
|
}
|
|
|
|
export interface LocalArtifactCapacityProbe {
|
|
inspect(root: string): Promise<LocalArtifactCapacitySnapshot>;
|
|
}
|
|
|
|
export interface LocalArtifactCapacitySource {
|
|
inspect(): Promise<LocalArtifactCapacitySnapshot>;
|
|
}
|