@np-dev/youtubei-js
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
19 lines (18 loc) • 1.01 kB
TypeScript
import { Type as TranslateCommentParams } from "./(PeformCommentActionParams)/TranslateCommentParams.js";
export declare namespace $.youtube {
type PeformCommentActionParams = {
type: number;
unkNum?: number;
commentId: string;
videoId: string;
channelId?: string;
translateCommentParams?: TranslateCommentParams;
};
}
export type Type = $.youtube.PeformCommentActionParams;
export declare function getDefaultValue(): $.youtube.PeformCommentActionParams;
export declare function createValue(partialValue: Partial<$.youtube.PeformCommentActionParams>): $.youtube.PeformCommentActionParams;
export declare function encodeJson(value: $.youtube.PeformCommentActionParams): unknown;
export declare function decodeJson(value: any): $.youtube.PeformCommentActionParams;
export declare function encodeBinary(value: $.youtube.PeformCommentActionParams): Uint8Array;
export declare function decodeBinary(binary: Uint8Array): $.youtube.PeformCommentActionParams;