@np-dev/youtubei-js
Version:
A wrapper around YouTube's private API. Supports YouTube, YouTube Music, YouTube Kids and YouTube Studio (WIP).
15 lines (14 loc) • 844 B
TypeScript
export declare namespace $.youtube.SoundInfoParams.Sound.Params {
type Ids = {
id1: string;
id2: string;
id3: string;
};
}
export type Type = $.youtube.SoundInfoParams.Sound.Params.Ids;
export declare function getDefaultValue(): $.youtube.SoundInfoParams.Sound.Params.Ids;
export declare function createValue(partialValue: Partial<$.youtube.SoundInfoParams.Sound.Params.Ids>): $.youtube.SoundInfoParams.Sound.Params.Ids;
export declare function encodeJson(value: $.youtube.SoundInfoParams.Sound.Params.Ids): unknown;
export declare function decodeJson(value: any): $.youtube.SoundInfoParams.Sound.Params.Ids;
export declare function encodeBinary(value: $.youtube.SoundInfoParams.Sound.Params.Ids): Uint8Array;
export declare function decodeBinary(binary: Uint8Array): $.youtube.SoundInfoParams.Sound.Params.Ids;