Add files via upload

This commit is contained in:
2024-05-04 16:29:27 +02:00
committed by GitHub
parent dec33f4e2a
commit 5a341a3281
12 changed files with 150 additions and 72 deletions
+2 -3
View File
@@ -3,14 +3,13 @@ type StartProps = {
igi: number;
igv: number;
type: string;
StreamFile?: string;
StreamLink?: string;
Resource: string;
};
type StopProps = {
igi: number;
};
declare function StreamStart({ imvci, igi, igv, type, StreamFile, StreamLink }: StartProps): void;
declare function StreamStart({ imvci, igi, igv, type, Resource, }: StartProps): void;
declare function StreamStop({ igi, }: StopProps): void;