mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
13 lines
232 B
TypeScript
13 lines
232 B
TypeScript
declare module "tasklist" {
|
|
interface Task {
|
|
imageName: string;
|
|
pid: number;
|
|
sessionName: string;
|
|
sessionNumber: number;
|
|
memUsage: number;
|
|
}
|
|
|
|
function tasklist(): Promise<Task[]>;
|
|
|
|
export { tasklist };
|
|
}
|