mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-19 21:00:40 +08:00
* added auto https detection * not catch all * improved cookie logic * fixed bugs * Update packages/stack/src/lib/cookie.ts Co-authored-by: Konsti Wohlwend <n2d4xc@gmail.com> * Update packages/stack/src/lib/cookie.ts Co-authored-by: Konsti Wohlwend <n2d4xc@gmail.com> * improve logic flow --------- Co-authored-by: Konsti Wohlwend <n2d4xc@gmail.com>
7 lines
297 B
TypeScript
7 lines
297 B
TypeScript
import * as def from "./index.default";
|
|
import * as reactServer from "./index.react-server";
|
|
|
|
export declare const cookies: typeof reactServer.cookies | typeof def.cookies;
|
|
export declare const headers: typeof reactServer.headers | typeof def.headers;
|
|
export declare const isReactServer: boolean;
|