mirror of
https://github.com/zadam/trilium.git
synced 2026-03-23 12:20:13 +01:00
33 lines
892 B
TypeScript
33 lines
892 B
TypeScript
import type { SessionData } from "express-session";
|
|
|
|
export declare module "express-serve-static-core" {
|
|
interface Request {
|
|
headers: {
|
|
"x-local-date"?: string;
|
|
"x-labels"?: string;
|
|
|
|
authorization?: string;
|
|
"trilium-cred"?: string;
|
|
"x-csrf-token"?: string;
|
|
|
|
"trilium-component-id"?: string;
|
|
"trilium-local-now-datetime"?: string;
|
|
"trilium-hoisted-note-id"?: string;
|
|
|
|
"user-agent"?: string;
|
|
};
|
|
}
|
|
}
|
|
|
|
export declare module "express-session" {
|
|
interface SessionData {
|
|
loggedIn: boolean;
|
|
lastAuthState: {
|
|
totpEnabled: boolean;
|
|
ssoEnabled: boolean;
|
|
};
|
|
/** Set during /bootstrap to mark the session as modified so express-session persists it and sends the cookie. */
|
|
csrfInitialized?: true;
|
|
}
|
|
}
|