mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-27 16:48:55 +00:00
13 lines
257 B
TypeScript
13 lines
257 B
TypeScript
export = NToken;
|
|
declare class NToken {
|
|
constructor(raw_code: any, n: any);
|
|
n: any;
|
|
raw_code: any;
|
|
/**
|
|
* Solves throttling challange by transforming the n token.
|
|
* @returns {string}
|
|
*/
|
|
transform(): string;
|
|
#private;
|
|
}
|