UNPKG

ts-markdown-parser

Version:

TypeScript library that converts markdown to HTML (with code support).

80 lines 1.54 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.tsTypes = exports.reservedKeywords = void 0; exports.reservedKeywords = [ "instanceof", "break", "case", "catch", "class", "const", "continue", "debugger", "default", "delete", "else", "export", "extends", "finally", "function", "import", "return", "super", "switch", "this", "throw", "typeof", "type", "from", "void", "while", "with", "yield", "await", "async", "enum", "implements", "interface", "package", "private", "protected", "public", "static", "super", "readonly", "try", "var", "if", "let", "new", "for", "in", "do", ]; exports.tsTypes = [ ": number", ": string", ": boolean", ": void", ": null", ": undefined", ": any", ": unknown", ": never", ": object", ": Array<T>", // or T[] ": Tuple<T1, T2, ...>", // For tuple types ": Function", // General function type ": Promise<T>", // For promise types ": RegExp", // Regular expression type ": Symbol", // Symbol type ": bigint", // BigInt type ": Date", // Date object type ": Set<T>", // Set type ": Map<K, V>", // Map type ": WeakSet<T>", // WeakSet type ": WeakMap<K, V>", // WeakMap type ": ReadonlyArray<T>", // Read-only array type ": Readonly<T>", // Read-only type ]; //# sourceMappingURL=keywords.js.map