mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-20 04:51:16 +00:00
14 lines
269 B
TypeScript
14 lines
269 B
TypeScript
export = Signature;
|
|
declare class Signature {
|
|
constructor(url: any, sig_decipher_sc: any);
|
|
url: any;
|
|
sig_decipher_sc: any;
|
|
decipherBeta(): any;
|
|
/**
|
|
* Deciphers signature.
|
|
* @returns {string}
|
|
*/
|
|
decipher(): string;
|
|
#private;
|
|
}
|