Add files via upload

This commit is contained in:
2024-07-07 18:48:34 +02:00
committed by GitHub
parent 4ea7a9bf86
commit 5220bf4af4
18 changed files with 3101 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
type startParameters = {
imvci: number;
igi: number;
igv: number;
type: string;
Resource: string;
};
type stopParameter = {
igi: number;
};
declare function start({ imvci, igi, igv, type, Resource, }: startParameters): void;
declare function stop({ igi, }: stopParameter): void;
export { start, stop };