feat: remove tasklist ts declaration and remove tasklist dependency

This commit is contained in:
Zamitto 2024-04-26 22:42:07 -03:00
parent 2363a6d0b2
commit e15479cd6a
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 };
}