mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-11 13:56:16 +00:00
14 lines
232 B
TypeScript
14 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 };
|
|
}
|