Files
Discord-Audio-Stream/dist/index.d.mts
T
2024-05-04 16:29:27 +02:00

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 };