bs-datatable
Version:
A data table based on Bootstrap 5
14 lines (13 loc) • 417 B
TypeScript
/**
* simple utility to add/remove cookies based on ES7
* credit: https://stackoverflow.com/a/48706852
*/
declare class Cookie {
get(name: string): string;
set(name: string, value: any, opts?: any): void;
delete(name: string, opts?: any): void;
getJSON(name: string): any;
setJSON(name: string, value: any, opts: any): void;
}
export declare const CookieHelper: Cookie;
export {};