@tdb/util
Version:
Shared helpers and utilities.
14 lines (13 loc) • 441 B
TypeScript
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;
};