stackpress
Version:
Incept is a content management framework.
9 lines (8 loc) • 318 B
TypeScript
import type { ServerSessionProps, SessionPermission } from '../types.js';
export default class Session {
static load(data: ServerSessionProps): Session;
readonly data: ServerSessionProps;
get guest(): boolean;
constructor(data: ServerSessionProps);
can(...permits: SessionPermission[]): boolean;
}