17 lines
336 B
TypeScript
17 lines
336 B
TypeScript
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): void;
|
|
|
|
declare function StreamStop({ igi, }: StopProps): void;
|
|
|
|
export { StreamStart, StreamStop };
|