Files
Discord-Audio-Stream/dist/index.d.ts
T
2024-05-06 20:41:20 +02:00

17 lines
353 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): "Unknown" | undefined;
declare function StreamStop({ igi, }: StopProps): void;
export { StreamStart, StreamStop };