UNPKG

@tdb/util

Version:
14 lines (13 loc) 441 B
import { ICookieOptions } from './types'; import { prop } from './prop'; import { ServerCookie } from './server'; import { toObject } from './util'; export { ICookieOptions, ServerCookie }; export * from './types'; export * from './server'; export declare const cookie: { prop: typeof prop; toObject: typeof toObject; changes$: import("rxjs").Observable<import("./types").ICookieChangedEvent>; server: () => ServerCookie; };