Delete dist directory

This commit is contained in:
2024-07-07 18:29:18 +02:00
committed by GitHub
parent 6b9f742562
commit f79e22f718
4 changed files with 0 additions and 279 deletions
-16
View File
@@ -1,16 +0,0 @@
type StartProps = {
imvci: number;
igi: number;
igv: number;
type: string;
Resource: string;
};
type StopProps = {
igi: number;
};
declare function StreamStart({ imvci, igi, igv, type, Resource, }: StartProps): "Unknown" | undefined;
declare function StreamStop({ igi, }: StopProps): void;
export { StreamStart, StreamStop };