UNPKG

250 BTypeScriptView Raw
1export declare class Cookie {
2 static get Instance(): Cookie;
3 private static __instance;
4 private constructor();
5 read(name: string): string;
6 write(name: string, value: string, days?: number): void;
7 remove(name: string): void;
8}