Files
Discord-Audio-Stream/dist/index.d.mts
T
2024-05-03 20:35:26 +02:00

18 lines
377 B
TypeScript

type StartProps = {
imvci: number;
igi: number;
igv: number;
type: string;
StreamFile?: string;
StreamLink?: string;
};
type StopProps = {
igi: number;
};
declare function StreamStart({ imvci, igi, igv, type, StreamFile, StreamLink }: StartProps): void;
declare function StreamStop({ igi, }: StopProps): void;
export { StreamStart, StreamStop };