mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 19:42:38 +02:00
12 lines
322 B
TypeScript
12 lines
322 B
TypeScript
/**
|
|
* Set the "Don't show again" state
|
|
*
|
|
* @api private
|
|
*/
|
|
export declare function setDontShowAgain(dontShowAgain: boolean, cookieName: string, cookieDays: number): void;
|
|
/**
|
|
* Get the "Don't show again" state from cookies
|
|
*
|
|
* @api private
|
|
*/
|
|
export declare function getDontShowAgain(cookieName: string): boolean;
|