tdpw
Version:
CLI tool for uploading Playwright test reports to TestDino platform with Azure storage support
26 lines • 465 B
TypeScript
/**
* System metadata structure
*/
export interface SystemMetadata {
hostname: string;
cpu: {
count: number;
model: string;
};
memory: {
total: string;
};
os: string;
nodejs: string;
playwright: string;
}
/**
* Collector for system metadata
*/
export declare class SystemCollector {
/**
* Gather system metadata
*/
static collect(): SystemMetadata;
}
//# sourceMappingURL=system.d.ts.map