feat: remove tasklist ts declaration and remove tasklist dependency

This commit is contained in:
Zamitto
2024-04-26 22:42:07 -03:00
parent 917c92602e
commit aedb08d939
3 changed files with 0 additions and 64 deletions

13
src/declaration.d.ts vendored
View File

@@ -1,13 +0,0 @@
declare module "tasklist" {
interface Task {
imageName: string;
pid: number;
sessionName: string;
sessionNumber: number;
memUsage: number;
}
function tasklist(): Promise<Task[]>;
export { tasklist };
}