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