UNPKG

@rnaga/wp-node

Version:

👉 **[View Full Documentation at rnaga.github.io/wp-node →](https://rnaga.github.io/wp-node/)**

19 lines • 660 B
import { Context } from "./context"; import type * as types from "../types"; export declare class Vars { static globalMap: Map<any, any>; map: Map<string, any>; get TABLES_MS_CURRENT_INDEX(): number; set TABLES_MS_CURRENT_INDEX(index: number); get DOING_AUTOSAVE(): boolean; set DOING_AUTOSAVE(save: boolean); get CONTEXT(): Context; set CONTEXT(context: Context); get USER_ROLES(): types.Roles; set USER_ROLES(roles: types.Roles); set TZ_IDENTIFIER(tz: string); get TZ_IDENTIFIER(): string; set TIME_OFFSET_MINUTES(offset: number); get TIME_OFFSET_MINUTES(): number; } //# sourceMappingURL=vars.d.ts.map