/** * Special identifiers * TODO: add tracking for these identifiers */ export declare const OTHER_IDENTIFIERS: readonly ["undefined", "NaN", "Infinity", "Object", "Array", "String", "Number", "Boolean", "console", "window", "document", "global"]; export declare enum OTHER_IDENTIFIERS_ENUM { UNDEFINED = "undefined", NAN = "NaN", INFINITY = "Infinity", OBJECT = "Object", ARRAY = "Array", STRING = "String", NUMBER = "Number", BOOLEAN = "Boolean", CONSOLE = "console", WINDOW = "window", DOCUMENT = "document", GLOBAL = "global" } export type OtherIdentifier = (typeof OTHER_IDENTIFIERS)[number]; /** * List of invalid identifiers (cause runtime error but no build error) */ export declare const INVALID_IDENTIFIERS: OTHER_IDENTIFIERS_ENUM[]; export type InvalidIdentifier = (typeof INVALID_IDENTIFIERS)[number]; //# sourceMappingURL=constants.d.ts.map