mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-09 11:42:21 +03: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 };
|
|
}
|