@freetube/youtube-chat
Version:
> Fetch Youtube live chat without API
31 lines (30 loc) • 948 B
TypeScript
/// <reference types="node" />
import { EventEmitter } from 'events';
import { CommentItem } from './parser';
/**
* YouTubeライブチャット取得イベント
*/
export declare class LiveChat extends EventEmitter {
private interval;
private static readonly headers;
readonly channelId?: string;
liveId?: string;
private key?;
private continuation?;
private clientName?;
private clientVersion?;
private prevTime;
private observer?;
constructor(options: {
channelId: string;
} | {
liveId: string;
}, interval?: number);
start(): Promise<boolean>;
stop(reason?: string): void;
private fetchChat;
on(event: 'comment', listener: (comment: CommentItem) => void): this;
on(event: 'start', listener: (liveId: string) => void): this;
on(event: 'end', listener: (reason?: string) => void): this;
on(event: 'error', listener: (err: Error) => void): this;
}